home *** CD-ROM | disk | FTP | other *** search
/ MacTech 1 to 12 / MacTech-vol-1-12.toast / Source / MacTech® Magazine / Volume 08 - 1992 / 08.02 Jun 92 / Generic Virus Detection / Errors.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-05-26  |  295 b   |  10 lines  |  [TEXT/MPS ]

  1. /* errors.h : error message definitions */
  2.  
  3. #define NO_ERROR        0
  4. #define BAD_STRING_MALLOC    "Cannot allocate new string!\n"
  5. #define GOODBYE        "Cannot recover from previous error: bye!\n"
  6. #define CANNOT_OPEN_FILE    "Cannot open file: %s\n"
  7. #define UNKNOWN        "Unknown error!\n"
  8. typedef int ERROR_CODE;
  9.  
  10.